CreateObject
Creates an empty object, an analogue of {}
in JS.
Please note, that for the
.docbuilder
file theCDocBuilderContext.CreateObject
method is not used.
Syntax
HRESULT CreateObject([out, retval] I_DOCBUILDER_VALUE** result);
Parameters
Parameter | Type | Description |
---|---|---|
result | I_DOCBUILDER_VALUE** | The pointer to store the created empty object |
Example
COM
CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderValue* oContent = NULL;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->CreateObject(&oContent);
oBuilder->Dispose();